home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmFiles
- Caption = "Select a File"
- ClientHeight = 2820
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 5535
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2820
- ScaleWidth = 5535
- Begin VB.PictureBox picFileSpec
- Height = 375
- Left = 120
- ScaleHeight = 315
- ScaleWidth = 2955
- TabIndex = 4
- Top = 2280
- Width = 3015
- End
- Begin VB.CommandButton cmdDisplay
- Caption = "Display Complete Name of File"
- Height = 495
- Left = 120
- TabIndex = 3
- Top = 1680
- Width = 3015
- End
- Begin VB.FileListBox filList
- Height = 2235
- Left = 3600
- TabIndex = 2
- Top = 120
- Width = 1815
- End
- Begin VB.DirListBox dirList
- Height = 1380
- Left = 1440
- TabIndex = 1
- Top = 120
- Width = 2055
- End
- Begin VB.DriveListBox drvList
- Height = 315
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 1215
- End
- Attribute VB_Name = "frmFiles"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDisplay_Click()
- picFileSpec.Cls
- picFileSpec.Print dirList.Path;
- If Right(dirList.Path, 1) <> "\" Then
- picFileSpec.Print "\";
- End If
- picFileSpec.Print filList.filename
- End Sub
- Private Sub dirList_Change()
- filList.Path = dirList.Path
- End Sub
- Private Sub drvList_Change()
- dirList.Path = drvList.Drive
- End Sub
-